List 总结 先回顾一下List的框架图
List 是一个接口,它继承于Collection的接口。它代表着有序的队列。
AbstractList 是一个抽象类,它继承于AbstractCollection。AbstractList实现List接口中除size()、get(int location)之外的函数。
AbstractSequentialList 是一个抽象类,它继承于AbstractList。AbstractSequentialList 实现了“链表中,根据index索引值操作链表的全部函数”。
ArrayList, LinkedList, Vector, Stack是List的4个实现类。
1. ArrayList 是一个数组队列,相当于动态数组。它由数组实现,随机访问效率高,随机插入、随机删除效率低。
2. LinkedList 是一个双向链表。它也可以被当作堆栈、队列或双端队列进行操作。LinkedList随机访问效率低,但随机插入、随机删除效率高。
3. Vector 是矢量队列,和ArrayList一样,它也是一个动态数组,由数组实现。但是ArrayList是非线程安全的,而Vector是线程安全的。
4. Stack 是栈,它继承于Vector。它的特性是:先进后出(FILO, First In Last Out)。
List使用场景 学东西的最终目的是为了能够理解、使用它。下面先概括的说明一下各个List的使用场景,后面再分析原因。
如果涉及到“栈”、“队列”、“链表”等操作,应该考虑用List,具体的选择哪个List,根据下面的标准来取舍。
对于需要快速插入,删除元素,应该使用LinkedList。
对于需要快速随机访问元素,应该使用ArrayList。
对于“单线程环境” 或者 “多线程环境,但List仅仅只会被单个线程操作”,此时应该使用非同步的类(如ArrayList)。
对于“多线程环境,且List可能同时被多个线程操作”,此时,应该使用同步的类(如Vector)。
通过下面的测试程序,我们来验证上面的(01)和(02)结论。参考代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 import java.util.*;import java.lang.Class;public class ListCompareTest { private static final int COUNT = 100000 ; private static LinkedList linkedList = new LinkedList(); private static ArrayList arrayList = new ArrayList(); private static Vector vector = new Vector(); private static Stack stack = new Stack(); public static void main (String[] args) { System.out.println(); insertByPosition(stack) ; insertByPosition(vector) ; insertByPosition(linkedList) ; insertByPosition(arrayList) ; System.out.println(); readByPosition(stack); readByPosition(vector); readByPosition(linkedList); readByPosition(arrayList); System.out.println(); deleteByPosition(stack); deleteByPosition(vector); deleteByPosition(linkedList); deleteByPosition(arrayList); } private static String getListName (List list) { if (list instanceof LinkedList) { return "LinkedList" ; } else if (list instanceof ArrayList) { return "ArrayList" ; } else if (list instanceof Stack) { return "Stack" ; } else if (list instanceof Vector) { return "Vector" ; } else { return "List" ; } } private static void insertByPosition (List list) { long startTime = System.currentTimeMillis(); for (int i=0 ; i<COUNT; i++) list.add(0 , i); long endTime = System.currentTimeMillis(); long interval = endTime - startTime; System.out.println(getListName(list) + " : insert " +COUNT+" elements into the 1st position use time:" + interval+" ms" ); } private static void deleteByPosition (List list) { long startTime = System.currentTimeMillis(); for (int i=0 ; i<COUNT; i++) list.remove(0 ); long endTime = System.currentTimeMillis(); long interval = endTime - startTime; System.out.println(getListName(list) + " : delete " +COUNT+" elements from the 1st position use time:" + interval+" ms" ); } private static void readByPosition (List list) { long startTime = System.currentTimeMillis(); for (int i=0 ; i<COUNT; i++) list.get(i); long endTime = System.currentTimeMillis(); long interval = endTime - startTime; System.out.println(getListName(list) + " : read " +COUNT+" elements by position use time:" + interval+" ms" ); } }
运行结果如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 Stack : insert 100000 elements into the 1 st position use time:1640 ms Vector : insert 100000 elements into the 1 st position use time:1607 ms LinkedList : insert 100000 elements into the 1 st position use time:29 ms ArrayList : insert 100000 elements into the 1 st position use time:1617 ms Stack : read 100000 elements by position use time:9 ms Vector : read 100000 elements by position use time:6 ms LinkedList : read 100000 elements by position use time:10809 ms ArrayList : read 100000 elements by position use time:5 ms Stack : delete 100000 elements from the 1 st position use time:1916 ms Vector : delete 100000 elements from the 1 st position use time:1910 ms LinkedList : delete 100000 elements from the 1 st position use time:15 ms ArrayList : delete 100000 elements from the 1 st position use time:1909 ms
从中,我们可以发现: 插入10万个元素,LinkedList所花时间最短:29ms。 删除10万个元素,LinkedList所花时间最短:15ms。 遍历10万个元素,LinkedList所花时间最长:10809 ms;而ArrayList、Stack和Vector则相差不多,都只用了几秒。
LinkedList和ArrayList性能差异分析 为什么LinkedList中插入元素很快,而ArrayList中插入元素很慢! LinkedList.java
中向指定位置插入元素的代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 public void add (int index, E element) { addBefore(element, (index==size ? header : entry(index))); } private Entry<E> entry (int index) { if (index < 0 || index >= size) throw new IndexOutOfBoundsException("Index: " +index+ ", Size: " +size); Entry<E> e = header; if (index < (size >> 1 )) { for (int i = 0 ; i <= index; i++) e = e.next; } else { for (int i = size; i > index; i--) e = e.previous; } return e; } private Entry<E> addBefore (E e, Entry<E> entry) { Entry<E> newEntry = new Entry<E>(e, entry, entry.previous); newEntry.previous.next = newEntry; newEntry.next.previous = newEntry; size++; modCount++; return newEntry; }
从中,我们可以看出:通过add(int index, E element)
向LinkedList插入元素时。先是在双向链表中找到要插入节点的位置index;找到之后,再插入一个新节点。
双向链表查找index位置的节点时,有一个加速动作:若index < 双向链表长度的1/2,则从前向后查找; 否则,从后向前查找。
接着,我们看看ArrayList.java中向指定位置插入元素的代码。如下:
1 2 3 4 5 6 7 8 9 10 11 12 public void add (int index, E element) { if (index > size || index < 0 ) throw new IndexOutOfBoundsException( "Index: " +index+", Size: " +size); ensureCapacity(size+1 ); System.arraycopy(elementData, index, elementData, index + 1 , size - index); elementData[index] = element; size++; }
耗时的操作是 :
1 System.arraycopy(elementData, index, elementData, index + 1 , size - index);
Sun JDK包的java/lang/System.java中的arraycopy()声明如下:
1 public static native void arraycopy (Object src, int srcPos, Object dest, int destPos, int length) ;
arraycopy()是个JNI函数,它是在JVM中实现的。sunJDK中看不到源码,不过可以在OpenJDK包中看到的源码。网上有对arraycopy()的分析说明,请参考:System.arraycopy源码分析 。
实际上,我们只需要了解:
1 System.arraycopy(elementData, index, elementData, index + 1 , size - index);
会移动index之后所有元素即可。这就意味着,ArrayList的add(int index, E element)
函数,会引起index之后所有元素的改变!
通过上面的分析,我们就能理解为什么LinkedList中插入元素很快,而ArrayList中插入元素很慢。
“删除元素”与“插入元素”的原理类似,这里就不再过多说明。
为什么LinkedList中随机访问很慢,而ArrayList中随机访问很快 先看看LinkedList随机访问的代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 public E get (int index) { return entry(index).element; } private Entry<E> entry (int index) { if (index < 0 || index >= size) throw new IndexOutOfBoundsException("Index: " +index+ ", Size: " +size); Entry<E> e = header; if (index < (size >> 1 )) { for (int i = 0 ; i <= index; i++) e = e.next; } else { for (int i = size; i > index; i--) e = e.previous; } return e; }
从中,我们可以看出:通过get(int index)获取LinkedList第index个元素时。先是在双向链表中找到要index位置的元素;找到之后再返回。 双向链表查找index位置的节点时,有一个加速动作:若index < 双向链表长度的1/2,则从前向后查找; 否则,从后向前查找。
下面看看ArrayList随机访问的代码
1 2 3 4 5 6 7 8 9 10 11 12 public E get (int index) { RangeCheck(index); return (E) elementData[index]; } private void RangeCheck (int index) { if (index >= size) throw new IndexOutOfBoundsException( "Index: " +index+", Size: " +size); }
从中,我们可以看出:通过get(int index)获取ArrayList第index个元素时。直接返回数组中index位置的元素,而不需要像LinkedList一样进行查找。
Vector和ArrayList比较 相同之处 它们都是List 它们都继承于AbstractList,并且实现List接口。 ArrayList和Vector的类定义如下:
1 2 3 4 5 6 7 public class ArrayList <E > extends AbstractList <E > implements List <E >, RandomAccess , Cloneable , java .io .Serializable // Vector 的定义 public class Vector <E > extends AbstractList <E > implements List <E >, RandomAccess , Cloneable , java .io .Serializable {}
它们都实现了RandomAccess和Cloneable接口 实现RandomAccess接口,意味着它们都支持快速随机访问; 实现Cloneable接口,意味着它们能克隆自己。
它们都是通过数组实现的,本质上都是动态数组 ArrayList.java中定义数组elementData用于保存元素
1 2 3 4 5 6 private transient Object[] elementData;Vector.java中也定义了数组elementData用于保存元素 protected Object[] elementData;
它们的默认数组容量是10 若创建ArrayList或Vector时,没指定容量大小;则使用默认容量大小10。
1 2 3 4 5 6 7 8 9 public ArrayList () { this (10 ); } public Vector () { this (10 ); }
它们都支持Iterator和listIterator遍历 它们都继承于AbstractList,而AbstractList中分别实现了 “iterator()接口返回Iterator迭代器” 和 “listIterator()返回ListIterator迭代器”。
不同之处 线程安全性不一样 ArrayList是非线程安全; 而Vector是线程安全的,它的函数都是synchronized的,即都是支持同步的。 ArrayList适用于单线程,Vector适用于多线程。
对序列化支持不同 ArrayList支持序列化,而Vector不支持;即ArrayList有实现java.io.Serializable接口,而Vector没有实现该接口。
构造函数个数不同 ArrayList有3个构造函数,而Vector有4个构造函数。Vector除了包括和ArrayList类似的3个构造函数之外,另外的一个构造函数可以指定容量增加系数。
ArrayList的构造函数如下:
1 2 3 4 5 6 7 8 ArrayList() ArrayList(int capacity) ArrayList(Collection<? extends E> collection)
Vector的构造函数如下:
1 2 3 4 5 6 7 8 9 10 11 Vector() Vector(int capacity) Vector(Collection<? extends E> collection) Vector(int capacity, int capacityIncrement)
4、容量增加方式不同 逐个添加元素时,若ArrayList容量不足时,“新的容量”=“(原始容量x3)/2 + 1”。
而Vector的容量增长与“增长系数有关”,若指定了“增长系数”,且“增长系数有效(即,大于0)”;那么,每次容量不足时,“新的容量”=“原始容量+增长系数”。若增长系数无效(即,小于/等于0),则“新的容量”=“原始容量 x 2”。
ArrayList中容量增长的主要函数如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 public void ensureCapacity (int minCapacity) { modCount++; int oldCapacity = elementData.length; if (minCapacity > oldCapacity) { Object oldData[] = elementData; int newCapacity = (oldCapacity * 3 )/2 + 1 ; if (newCapacity < minCapacity) newCapacity = minCapacity; elementData = Arrays.copyOf(elementData, newCapacity); } }
Vector中容量增长的主要函数如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 private void ensureCapacityHelper (int minCapacity) { int oldCapacity = elementData.length; if (minCapacity > oldCapacity) { Object[] oldData = elementData; int newCapacity = (capacityIncrement > 0 ) ? (oldCapacity + capacityIncrement) : (oldCapacity * 2 ); if (newCapacity < minCapacity) { newCapacity = minCapacity; } elementData = Arrays.copyOf(elementData, newCapacity); } }
5、对Enumeration的支持不同。Vector支持通过Enumeration去遍历,而List不支持 Vector中实现Enumeration的代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public Enumeration<E> elements () { return new Enumeration<E>() { int count = 0 ; public boolean hasMoreElements () { return count < elementCount; } public E nextElement () { synchronized (Vector.this ) { if (count < elementCount) { return (E)elementData[count++]; } } throw new NoSuchElementException("Vector Enumeration" ); } }; }